-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use 'FromMaybe' variant of GetFunction()->NewInstance() #50
Conversation
…ecation warning Signed-off-by: Tim Janik <timj@gnu.org>
Well, this moving to So at the present I prefer not to break compatibility with older V8 versions, at least from version 4.10. I use preprocessor definitions But in general, you are right, and some time this should be done. |
Updated implementation to V8 version 5.9: - use `v8::Local` instead of `v8::Handle` - use `v8::Global` instead of `v8::PersistentHandle` - use functions returning `MaybeLocal` Updated V8 versions in Travis script and Makefile, switched to `xenial` image (although it hasn't been officially released yet) Related to #50 and #66
Updated implementation to V8 version 5.9: - use `v8::Local` instead of `v8::Handle` - use `v8::Global` instead of `v8::PersistentHandle` - use functions returning `MaybeLocal` Updated V8 versions in Travis script and Makefile, switched to `xenial` image (although it hasn't been officially released yet) Related to #50 and #66
Updated implementation to V8 version 5.9: - use `v8::Local` instead of `v8::Handle` - use `v8::Global` instead of `v8::PersistentHandle` - use functions returning `MaybeLocal` Updated tests and examples. Updated V8 versions in Travis script and Makefile, switched to `xenial` image (although it hasn't been officially released yet) Related to #50 and #66
Done. |
to avoid deprecation warning
Signed-off-by: Tim Janik timj@gnu.org